home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-06-15 | 394 b | 27 lines | [TEXT/CWIE] |
- // FileCloser.h
-
- #ifndef FileCloser_h
- #define FileCloser_h
-
- #ifndef ParamBlockTask_h
- #include "ParamBlockTask.h"
- #endif
-
- class FileReadingPath;
-
- class FileCloser: private ParamBlockTask
- {
- private:
- FileReadingPath *path;
-
- virtual void Launch();
- virtual void Kill();
-
- public:
- Task *operator()( FileReadingPath& );
-
- OSErr Error() const { return ioParam.ioResult; }
- };
-
- #endif
-